home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / MacPerl 5.1.3 / Mac_Perl_513_src / MacPerl5 / MPPreferences.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-17  |  923 b   |  42 lines  |  [TEXT/MPS ]

  1. /*********************************************************************
  2. Project    :    MacPerl                -    Real Perl Application
  3. File        :    MPPreferences.h    -    Handle Preference Settings
  4. Author    :    Matthias Neeracher
  5.  
  6. A lot of this code is borrowed from 7Edit written by
  7. Apple Developer Support UK
  8.  
  9. Language    :    MPW C
  10.  
  11. $Log: MPPreferences.h,v $
  12. Revision 1.1  1994/02/27  23:03:58  neeri
  13. Initial revision
  14.  
  15. *********************************************************************/
  16.  
  17. #ifndef __MPPREFERENCES__
  18. #define __MPPREFERENCES__
  19.  
  20. #include <Types.h>
  21. #include <QuickDraw.h>
  22. #include <Packages.h>
  23. #include <GestaltEqu.h>
  24. #ifdef EVIL_USELESS_EDITIONS
  25. #include <Editions.h>
  26. #endif
  27. #include <Printing.h>
  28.  
  29. #ifndef __MPGLOBALS__
  30. #include "MPGlobals.h"
  31. #endif
  32.  
  33. pascal void OpenPreferenceFile(FSSpec * spec);
  34.  
  35. pascal void OpenPreferences();
  36.  
  37. pascal void DoPrefDialog();
  38.  
  39. pascal Boolean DoFormatDialog(DocFormat * format, Boolean * defaultFormat);
  40.  
  41. #endif
  42.